@charset "utf-8";

a, input:focus, textarea:focus {
    outline: none;
}

/**文章内加粗字体的样式**/
.container2 b {
	font-family: "microsoft yahei";
	font-size: 15px;
	color: #aeaeae;
}

/**文章内文本的字体样式**/
.container2 p {
	font-size: 14px;
	text-align: justify;
    text-indent: 32px;
	text-justify:inter-ideograph;
	font-family: "microsoft yahei";
	font-style: normal;
	font-weight: 400;
	color: #aeaeae;
	/*white-space: pre-line;*/   /*首行空出来*/
	margin-right: 1px;
	margin-left: 4px;
	margin-top: -5px;
	margin-bottom: 0;
	/*float: left;*/
	height: auto;
	width: auto;
}	

#EN .container2 p {
	text-align: left;
    text-indent: 0;
	margin-left: 0;
	line-height: 23px;
}

/***文章盒子的响应式布局***/
@media (max-width: 2000px) {
	.container2 {
		width: 450px;
		height: 160px;
		background: url(../Image/img01.png);
		float: left;
	}
	
	.container2 .div_scroll {
		width: 450px;
		height: 160px;
		overflow: auto;
		float: left;
	}
}

@media (max-width: 1500px) {
	.container2 {
		width: 378px;
		height: 140px;
		background: url(../Image/img01.png);
		float: left;
	}
	
	.container2 .div_scroll {
		width: 378px;
		height: 140px;
		overflow: auto;
		float: left;
	}
}

.container2 .scroll_container {
	overflow: hidden;
	position: relative;
}

.container2 .scroll_absolute {
    position: absolute;
}

.container2 .scroll_vertical_bar { /*  可改变滚动条宽度、高度、颜色以及位置*/
    position: absolute;
    top: 0;
    right: 0;
    width: 26px;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 1px;
}

.container2 .scroll_track {   /*滚动条背景色及位置*/
	position: relative;
	background: url(../Image/scroll/scroll_01.png) no-repeat center;
}

.container2 .scroll_drag {    /*滚动条中滚轴的颜色及位置*/
	position: relative;
	top: 0;
	left: 0;
	cursor: pointer;
	background: url(../Image/scroll/scroll_02.png) no-repeat center;
	background-size: 100% auto;
	min-height: 32px;
}

.container2 .scroll_arrow {   /*滚动条上下箭头的颜色及位置*/
	text-indent: -20000px;
	display: block;
	cursor: pointer;
	background-color: blueviolet;
}

.container2 .scroll_vertical_bar .scroll_arrow {
    /*height: 16px;*/
}


